
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            overflow-x: hidden;
        }
        
        /* Animated Background */
        .animated-bg {
            position: relative;
            background: linear-gradient(135deg, #f5f7fe 0%, #eef2ff 100%);
            overflow: hidden;
        }
        .animated-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(37,99,235,0) 70%);
            animation: rotateGlow 25s infinite linear;
            z-index: 0;
        }
        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Breadcrumb Hero */
        .breadcrumb-hero {
            background: linear-gradient(105deg, #0b2b5c 0%, #1e4a8a 100%);
            border-radius: 28px;
            padding: 1rem 1rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.2);
        }
        .breadcrumb-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.08"><path fill="white" d="M60,100 L100,40 L140,100 L100,160 Z M100,20 L140,80 L100,140 L60,80 Z" /></svg>');
            background-repeat: repeat;
            background-size: 40px;
            pointer-events: none;
        }
        .breadcrumb-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff, #e0f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .breadcrumb-hero .breadcrumb-nav {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(8px);
            display: inline-flex;
            padding: 0.5rem 1.4rem;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 0.75rem;
        }
        .breadcrumb-hero .breadcrumb-nav a {
            color: #facc15;
            text-decoration: none;
            transition: 0.2s;
        }
        .breadcrumb-hero .breadcrumb-nav a:hover {
            color: white;
        }
        .breadcrumb-hero .breadcrumb-nav .separator {
            color: #cbd5e1;
            margin: 0 8px;
        }
        .breadcrumb-hero .breadcrumb-nav .current {
            color: white;
            font-weight: 600;
        }
        
        /* Cards & Animations */
        .about-card {
            background: white;
            border-radius: 1.8rem;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: none;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .about-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 40px -16px rgba(0,0,0,0.12);
        }
        
        .stat-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 1.5rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
            border-bottom: 3px solid #2563eb;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            background: white;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e3a8a;
        }
        
        .highlight-badge {
            background: #e0f2fe;
            color: #0369a1;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .course-tag {
            background: #fef3c7;
            color: #b45309;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        .course-tag:hover {
            background: #f59e0b;
            color: white;
            transform: scale(1.02);
        }
        
        .quote-box {
            background: linear-gradient(115deg, #1e3a8a, #2563eb);
            border-radius: 2rem;
            color: white;
        }
        
        .fade-up {
            animation: fadeUp 0.7s ease-out forwards;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        hr.gradient-hr {
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #60a5fa, #bfdbfe);
            width: 100px;
            margin: 1rem auto;
            border-radius: 4px;
        }
        
        @media (max-width: 768px) {
            .breadcrumb-hero h1 { font-size: 2rem; }
            .stat-number { font-size: 1.8rem; }
        }
        
        .icon-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, #eff6ff, #e0eaff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s;
        }
        .about-card:hover .icon-circle {
            background: #2563eb;
            color: white;
            transform: scale(1.05);
        }
        .icon-circle i {
            font-size: 1.8rem;
            color: #2563eb;
            transition: all 0.3s;
        }
        .about-card:hover .icon-circle i {
            color: white;
        }
   